<!DOCTYPE>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>404页面</title>
<script src="/js/jquery.min.js"></script>
<script>
$(function(){
	setTimeout(function(){
		window.location.href = '/';
	}, 3000)
})
</script>
<style>
.Error{
	background-color:#0161b7;
	width:100%;
	height:100%;
	position:relative;
	z-index:999999999999;
	font-family:"黑体";
	font-weight:bold;
}
.Error .con{
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
}

.Error h1{
	font-size:120px;
	color:#FFF;
	display:block;
	text-align:center;
	letter-spacing:5px;
	font-weight:bold;
}
.Error span{
	font-size:40px;
	color:#FFF;
	display:block;
	text-align:center;
}
.Error .button{
	border:1px solid #FFF;
	width:300px;
	padding:10px;
	margin:0 auto;
	margin-top:30px;
	text-align:center;
}
.Error .button a{
	font-size:30px;
	color:#fff;
}
</style>
</head>
<body>
<div class="Error">
	<div class="con">
        <h1>404错误</h1>
        <span>很抱歉，您访问的页面不存在！</span>
        <div class="button"><a href="/">返回首页</a></div>
	</div>
</div>
</body>
</html>
